home *** CD-ROM | disk | FTP | other *** search
/ Nebula 2 / Nebula Two.iso / SourceCode / MiniExamples / AppKit / ZooView / RightSubView.h < prev    next >
Text File  |  1995-06-12  |  553b  |  31 lines

  1.  
  2. /* 
  3.  * RightSubView.m
  4.  *
  5.  * Purpose:
  6.  *        This object simply blasts an image to itself. Knows the name of the
  7.  *        image, too.
  8.  *
  9.  * You may freely copy, distribute, and reuse the code in this example.
  10.  * NeXT disclaims any warranty of any kind, expressed or  implied, as to its
  11.  * fitness for any particular use.
  12.  *
  13.  * Written by: Mary McNabb
  14.  * Created: Apr 91
  15.  *
  16.  */
  17.  
  18. #import <appkit/appkit.h>
  19.  
  20. #define MAXLEN 20
  21.  
  22. @interface RightSubView:View
  23. {
  24.     char animalName[MAXLEN];
  25. }
  26.  
  27. - drawSelf:(const NXRect *)r :(int)c;
  28. - setAnimalPicture:(char *)path;
  29.  
  30. @end
  31.